home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
editors
/
postit32
/
postit.bas
< prev
next >
Wrap
BASIC Source File
|
1995-10-26
|
1KB
|
36 lines
Attribute VB_Name = "POSTIT1"
' THIS IS THE LOCATION OF THE MAIN NOTES AND USERS DATABASE - MODIFY IT FOR YOUR OWN USE
Global Const PN_DATABASE = "\\archiveserv\archive\archive\database\numatic\postit\pnotes.mdb"
' This is the name of your network - it is the root node of the address.
Global Const PN_NETWORK = "Numatic Network"
' This is the location of the sound files on your network
Global Const PN_SOUNDFILES = "\\slave.1\clipart\sound files\"
' This is the location of the post-send program
Global Const PN_POSTSEND_PATH = "Y:\PUBLIC\APPS\POSTSEND32"
' This is the name of the supervisor - change it whoever is your supervisor
Global Const PN_SUPERVISOR = "MAT.G"
' NOTE :
' see notes for the following
' DOS Environment variables MUST be set up as follows :
' WINNAME - Must be set to the machine name ( i.e FRED.PC)
' USERNAME - The User's name (Full)
' wave sound player
Declare Function sndPlaySound Lib "winmm" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long